home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / CW GUSI 1.6.4 / Examples / GUSIFinger.r < prev    next >
Text File  |  1994-12-31  |  1KB  |  45 lines

  1. /*********************************************************************
  2. Project    :    GUSI                -    Grand Unified Socket Interface
  3. File        :    GUSIFinger        -    Finger daemon
  4. Author    :    Matthias Neeracher <neeri@iis.ethz.ch>
  5. Language    :    MPW C
  6.  
  7. $Log: GUSIFinger.r,v $
  8. Revision 1.1  1994/02/25  02:47:15  neeri
  9. Initial revision
  10.  
  11. *********************************************************************/
  12.  
  13. #define __kPrefSize    512
  14. #define __kMinSize    512
  15.  
  16. #define GUSI_PREF_VERSION '0110'
  17.  
  18. #include "GUSI.r"
  19.  
  20. resource 'GU∑I' (GUSIRsrcID) {
  21.     text, mpw, noAutoSpin, useChdir, approxStat, isTCPDaemon, noUDPDaemon
  22. };
  23.  
  24. resource 'SIZE' (-1) {
  25.     reserved,
  26.     acceptSuspendResumeEvents,
  27.     reserved,
  28.     canBackground,                /* we can background; we don't currently, but our sleep value */
  29.                                 /* guarantees we don't hog the Mac while we are in the background */
  30.     notMultiFinderAware,            /* this says we do our own activate/deactivate; don't fake us out */
  31.     onlyBackground,    /* this is definitely not a background-only application! */
  32.     dontGetFrontClicks,            /* change this is if you want "do first click" behavior like the Finder */
  33.     ignoreChildDiedEvents,        /* essentially, I'm not a debugger (sub-launching) */
  34.     not32BitCompatible,            /* this app should not be run in 32-bit address space */
  35.     isHighLevelEventAware,
  36.     localAndRemoteHLEvents,
  37.     reserved,
  38.     reserved,
  39.     reserved,
  40.     reserved,
  41.     reserved,
  42.     __kPrefSize * 1024,
  43.     __kMinSize * 1024    
  44. };
  45.